home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / util / gnu / groff_src.lha / Groff-1.07 / include / lib.h < prev    next >
C/C++ Source or Header  |  1993-02-21  |  3KB  |  102 lines

  1. // -*- C++ -*-
  2. /* Copyright (C) 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
  3.      Written by James Clark (jjc@jclark.com)
  4.  
  5. This file is part of groff.
  6.  
  7. groff is free software; you can redistribute it and/or modify it under
  8. the terms of the GNU General Public License as published by the Free
  9. Software Foundation; either version 2, or (at your option) any later
  10. version.
  11.  
  12. groff is distributed in the hope that it will be useful, but WITHOUT ANY
  13. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  15. for more details.
  16.  
  17. You should have received a copy of the GNU General Public License along
  18. with groff; see the file COPYING.  If not, write to the Free Software
  19. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
  20.  
  21. extern "C" {
  22.   char *strerror(int);
  23. #ifndef __BORLANDC__
  24.   const char *itoa(int);
  25.   const char *iftoa(int, int);
  26. #endif /* __BORLANDC__ */
  27. };
  28.  
  29. #ifdef STDLIB_H_DECLARES_GETOPT
  30. #include <stdlib.h>
  31. #else /* not STDLIB_H_DECLARES_GETOPT */
  32. #ifdef UNISTD_H_DECLARES_GETOPT
  33. #include <sys/types.h>
  34. #include <unistd.h>
  35. #else /* not UNISTD_H_DECLARES_GETOPT */
  36. extern "C" {
  37.   int getopt(int, char **, const char *);
  38.   extern char *optarg;
  39.   extern int optind;
  40.   extern int opterr;
  41. }
  42. #endif /* not UNISTD_H_DECLARES_GETOPT */
  43. #endif /* not STDLIB_H_DECLARES_GETOPT */
  44.  
  45. char *strsave(const char *s);
  46. int is_prime(unsigned);
  47.  
  48. #include <stdio.h>
  49.  
  50. FILE *xtmpfile();
  51.  
  52. int interpret_lf_args(const char *p);
  53.  
  54. extern char illegal_char_table[];
  55.  
  56. inline int illegal_input_char(int c)
  57. {
  58.   return c >= 0 && illegal_char_table[c];
  59. }
  60.  
  61. #ifdef HAVE_CC_LIMITS_H
  62. #include <limits.h>
  63. #else /* not HAVE_CC_LIMITS_H */
  64. #define INT_MAX 2147483647
  65. #endif /* not HAVE_CC_LIMITS_H */
  66.  
  67. /* It's not safe to rely on people getting INT_MIN right (ie signed). */
  68.  
  69. #ifdef INT_MIN
  70. #undef INT_MIN
  71. #endif
  72.  
  73. #ifdef CFRONT_ANSI_BUG
  74.  
  75. /* This works around a bug in cfront 2.0 used with ANSI C compilers. */
  76.  
  77. #define INT_MIN ((long)(-INT_MAX-1))
  78.  
  79. #else /* not CFRONT_ANSI_BUG */
  80.  
  81. #define INT_MIN (-INT_MAX-1)
  82.  
  83. #endif /* not CFRONT_ANSI_BUG */
  84.  
  85. /* Maximum number of digits in the decimal representation of an int
  86. (not including the -). */
  87.  
  88. #define INT_DIGITS 10
  89.  
  90. /* ad_delete deletes an array of objects with destructors;
  91. a_delete deletes an array of objects without destructors */
  92.  
  93. #ifdef ARRAY_DELETE_NEEDS_SIZE
  94. /* for 2.0 systems */
  95. #define ad_delete(size) delete [size]
  96. #define a_delete delete
  97. #else /* not ARRAY_DELETE_NEEDS_SIZE */
  98. /* for ARM systems */
  99. #define ad_delete(size) delete []
  100. #define a_delete delete []
  101. #endif /* not ARRAY_DELETE_NEEDS_SIZE */
  102.